home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 12 / Cream of the Crop 12 (Part II) / Cream of the Crop 12 (Part II).iso / BBS / EZY120_1.ZIP / STRUCT.ARJ / CLIB.ARJ / EXIST.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1996-03-09  |  162 b   |  9 lines

  1. #include <dir.h>
  2. #include <dos.h>
  3.  
  4. int ExistFile(char *Filename)
  5. {
  6.   struct ffblk ffblk;
  7.   return(findfirst(Filename,&ffblk,FA_RDONLY | FA_ARCH) == 0);
  8. }
  9.